home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacPerl 4.1.3 / README.MPW < prev    next >
Encoding:
Text File  |  1994-05-04  |  10.2 KB  |  220 lines  |  [TEXT/ttxt]

  1. WELCOME TO MPW PERL
  2.  
  3. This is Perl for the Mac, ported to MPW C by Matthias Neeracher 
  4. <neeri@iis.ee.ethz.ch> and Tim Endres <time@ice.com>. It runs every program in 
  5. the test suite that you could it reasonably expect to, and some you probably 
  6. didn't expect. Feel free to give this program away according to the terms stated 
  7. in the README file.
  8.  
  9. System Requirements
  10.  
  11. The MPW tool probably runs under System 6 and 7, although only System 7 has been
  12. tested by me lately. The standalone application requires System 7, but "MacPerl
  13. Runtime" provides a decent subset of the functionality under System 6. Some of 
  14. the really cool features require ToolServer, System 7, and enough RAM (Notably
  15. stuff like `CFront MacApp.cp`, while (<≈.c>) or open(XXX, "Catenate ≈.c |"))
  16. Some of the files barely compile with 5 megabytes of RAM. MPW C 3.3.1 is the 
  17. latest version of MPW C that has been used for rebuilding this release of Perl.
  18.  
  19. Bugs, Suggestions, Damnations
  20.  
  21. Please send your bug reports and/or fixes to <neeri@iis.ee.ethz.ch> (It is rather 
  22. unlikely that any of the bugs are relevant to the UNIX version). Note that MPW 
  23. Perl is neither developed nor supported by Apple Computer, Inc.
  24.  
  25. Mailing list
  26.  
  27. There is now a mailing list for announcing new releases, sharing scripts, and 
  28. discussions about how to make MPW Perl change your life. To subscribe, send
  29. a mail to <mpw-perl-request@iis.ee.ethz.ch>
  30.  
  31. Ftp sites
  32.  
  33. If you have internet access, you can obtain the newest versions of Perl by 
  34. anonymous ftp from one of the following addresses:
  35.  
  36. nic.switch.ch [130.59.1.40]       software/mac/perl
  37. ftp.eunet.ch  [146.228.10.15]     software/mac/perl
  38.  
  39. Revision History
  40.  
  41. 04May94    4.1.3
  42.  
  43. 25Apr94    4.1.3b3
  44.  
  45. - implemented utime() as far as possible (i.e., for modification times, the
  46.   Mac has no concept of access times) [James Burgess].
  47. - Pressing Control when launching a droplet enters the Perl debugger.
  48. - Introduced a preference option for inline input vs. floating input windows
  49.   for Japanese input.
  50. - Introduced a built-in variable $MacPerl'Version containing a string 
  51.   "4.1.3b3 MPW" or "4.1.3b3 Application", respectively.
  52. - Attempting to write on half open sockets would still sometimes hang 
  53.   [Asa Packer].
  54. - Permissions returned by stat() for locked files were wrong [John Kamp].
  55. - rename() on aliases renamed the original, not the alias 
  56.   [Maki Watanabe, Man Wei Tam].
  57. - gethostbyname() in scalar context would hang or return nonsense [Asa Packer].
  58.   This bug even appears in Unix Perl.
  59. - read() and recv() wouldn't work on stream sockets [James Burgess, Asa Packer].
  60. - Under certain conditions, malloc() would allocate memory in a pathological way
  61.   [Jim Kateley, Gary LaVoy, Barry Wolman]
  62. - While I was fixing the following, I rewrote malloc() for small blocks, which
  63.   appears to improve performance of the application considerably.
  64. - The font list in the format dialog now scrolls to make the default font visible
  65.   and draws font names in the correct *script system* (I don't believe in drawing 
  66.   fonts in their own font).
  67. - (Hopefully) fixed the timelocal.pl library.
  68. - Deleting all text in a console window would disable further input 
  69.   [Jim Kateley].
  70. - The cursor would not always revert to an arrow at the end of a script 
  71.   [Jim Kateley].
  72. - Added support for inline input for Japanese. This is supposed to work if
  73.   a system extension "Inline Tuika Kinou" is present. 
  74. - Avoid interrupting Perl scripts in the middle of asynchronous calls. Now, it 
  75.   should first interrupt the call, and wait with killing the script until a safe 
  76.   state is reached. This might fix a few nonspecific bugs.
  77. - Changed segmentation strategy and preloaded all segments which should fix a 
  78.   crash occuring when a window was dragged while a droplet ran 
  79.   [Michael Greenspon].
  80. - The sleep strategy still was a disaster (among others, performance was bad, and
  81.   TCP transfers would stop when Perl was in the background  
  82.   [Man Wei Tam, Michael Greenspon et al.]
  83. - getservbyname would fail unless /etc/services was in the preferences folder
  84.   [Alasdair Rawsthorne]
  85. - gmtime should work now, provided you either live in Greenwich or set your 
  86.   location in the Map control panel correctly [reported long ago by Roger Linder]
  87. - If any Perl script in a MacPerl session except the first one would try to use
  88.   TCP/IP, utterly nasty crashes would result 
  89.   [Sal Gurnani, Torsten Ekedahl et al.].
  90. - If no #! line was given, error line counts were off [David Friedlander]
  91. - ... and a few more GUSI related bug fixes.
  92.  
  93. 19Jan94    4.1.2
  94.  
  95. - Cursor wouldn't spin anymore [Jim Kateley]
  96. - Droplets didn't accept dropped files [Brad Hanson]
  97. - Opening two copies of MacPerl at the same time would give strange 
  98.   effects [Peter Lewis].
  99.   
  100. 12Jan94    4.1.1
  101.  
  102. - chdir() under some circumstances would not fail when trying to change to 
  103.   a nonexistent directory [Peter Lewis]
  104. - Added StandardFile.pl, originally written by Maki Watanabe.
  105. - Console windows behave better under stress (like when used by 
  106.   GUSIRemoteConsole).
  107. - Adapted semantics of GUSI select() on eof to the Un*x behavior.
  108. - Overwriting a file with a shorter version would sometimes produce trailing
  109.   garbage.
  110. - Supports -i without backup extension now [Reported long ago by Steve Dorner]
  111. - Supports opening up to 64 stdio files or 32 sockets [James Tisdall]
  112. - Fixed handling of default arguments to standard putfile/getfile/getfolder 
  113.   dialogs [Maki Watanabe]
  114. - Get folder dialogs now show the prompt argument given to choose [Maki Watanabe]
  115. - Fixed many aspects about cursor handling in MacPerl 
  116.   [Peter Lewis, Maki Watanabe].
  117. - When opening a script bigger than 32K, you are now offered to save it in any
  118.   format that MacPerl supports, which makes creating big runtimes or droplets
  119.   easier [David N. Blank-Edelman].
  120. - Perl would on startup open all network drivers, causing inconveniences and 
  121.   crashes on machines running SLIP or PPP [Lots of people].
  122. - MacPerl would die ungracefully under System 6.0.x. Now it dies gracefully.
  123. - MacPerl didn't display the list of acknowledgments correctly.
  124. - MacPerl didn't handle the desk scrap correctly [Maki Watanabe].
  125. - Made Perl more robust against out of memory situations [James Tisdall].
  126. - -t in MacPerl would lie for console windows [James Tisdall].
  127. - Cleaned up usage messages for &MacPerl'XXX extensions and in droplets.
  128. - Perl now supports calling many HyperCard XCMDs.
  129. - Added support for faccess() in the MPW Tool [Scott Collins].
  130. - Added a few options to MacPerl's preference dialog [Joe Bearly]. Among 
  131.   others, you can make MacPerl insist on a #! in your scripts.
  132.  
  133. 23Oct93    4.1.0
  134.  
  135. - Unified version for E.T.O. and non-E.T.O. release.
  136. - The standalone application has been completely rewritten and now supports:
  137.   - A separate window for the debugger
  138.   - Built-in support for creating Droplet applications and Runtimes for both
  139.     System 6 and System 7.
  140.   - Online Help, including balloons for all Perl commands.
  141.   - Recordability and scriptability from AppleScript.
  142.   - A cool new suite of icons (don't forget to rebuild the desktop file after 
  143.     installing if you had an old version of MacPerl installed).
  144.   
  145.   I have tried to credit all people who contributed to the development of Perl in
  146.   the About box. If you feel left out, feel free to drop me a note :-)
  147. - Disk based associative arrays are supported again.
  148. - All Mac specific commands are renamed again (maybe this time for good).
  149. - AppleScript is supported through the &MacPerl'DoAppleScript command.
  150.  
  151. 09Apr93    4.0.7•
  152.  
  153. - Cleaned packaging up for E.T.O. release.
  154. - This version currently excludes support for disk based associative arrays. A 
  155.   version which supports them is available by anonymous ftp from the above sites. 
  156.  
  157. 14Mar93    4.0.7
  158.  
  159. - Upgraded to UNIX pathlevel 36
  160. - Added &fgetinfo() and &fsetinfo() (David N. Blank-Edelman suggested these)
  161. - `pwd` or `Directory` (case is important) are hardcoded as a substitute for 
  162.   getcwd().
  163. - find2perl works now, thanks to Charlie Reiman
  164. - The Mac specific Perl routines are discussed in MacPerl.Specifics, as are my
  165.   namespace migration plans (as suggested by numerous people). This file is
  166.   still in a very rough state; suggestions for improvements are welcome.
  167. - The standalone version no longer presents a save dialog before quitting (as 
  168.   suggested by David N. Blank-Edelman).
  169. - Line numbers for extracted scripts (that is, practically all MPW Perl scripts)
  170.   are now presented more honestly. Unfortunately, this currently seems to break
  171.   the "b subroutine" function of the debugger.
  172. - GUSI related changes:
  173.     - Added support for the Printer Access Protocol (PAP): You can open a 
  174.       connection to the currently chosen LaserWriter with open("Dev:Printer").
  175.     - Added support for Dave Peterson's forthcoming inetd.
  176.     - st_nlink in statbufs used to return 1 for both files and folders. While it 
  177.       might be argued that this is true, it breaks some Unix programs. Therefore, 
  178.       the current version returns for folders either the number of items the 
  179.       folder contains + 2 or the number of subdirectories the folder contains + 2 
  180.       (the 2 is an Unixism), depending on a flag in the configuration resource 
  181.       (thanks to Charlie Reiman for reporting).
  182.     - fstat() used to claim that sockets were regular files. This bug had horrible 
  183.      consequences for Perl. Now, it correctly declares sockets to be
  184.      such.
  185.     - PPC sockets might work better now.
  186.  
  187. 24Jan93    4.0.6
  188.  
  189. - choose() for files no longer includes the terminating null character.
  190. - rename() and TCP sockets work better (thanks to Brad Pickering for reporting
  191.   these bugs).
  192. - standalone version can read scripts from its data fork and accepts more 
  193.   startup files.
  194. - (hopefully) improved the documentation a little. Added ObiWan support.
  195.   
  196. 20Dec92    4.0.5
  197.  
  198. - Supports sockets and symbolic links.
  199. - "ask", "answer" and "pick" are now builtins with a slightly changed syntax 
  200.   (sorry).
  201. - A few mac scripts are now provided in :t:mac and :macscripts:
  202. - The application now always searches for a #! line first. If none is found,
  203.   the script is executed anyway, but the file has to be read twice.
  204.   
  205. 27Sep92    4.0.4
  206.  
  207. This release upgrades the Mac version to UNIX patchlevel 35.
  208.  
  209. 08Jun92    4.0.3
  210.  
  211. This release supports opendir (In fact, I thought the last one'd already 
  212. support it. Thanks to Mike Meckler <meckler@egg.gg.caltech.edu> for reporting 
  213. this bug).
  214.  
  215. dbmopen & friends are now supported.
  216.  
  217. 20Jan92    4.0.2
  218.  
  219. First public release.
  220.